home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / falcon / programm.ing / falclib2.lzh / ROUTS / EXIT.S < prev    next >
Text File  |  1994-06-05  |  186b  |  16 lines

  1. *
  2. * EXIT.S
  3. *
  4. *    @exitifspace  macro
  5. *     branches to exit if space has been pressed
  6. *     (destroys nothing)
  7. *
  8.  
  9.  
  10. @exitifspace    macro
  11.         cmp.b    #$39,$fffffc02.w
  12.         beq    exit
  13.         endm
  14.  
  15.  
  16.